home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / info-service / wais / ir-book-sources / mphf / rantab.h < prev    next >
C/C++ Source or Header  |  1993-04-08  |  682b  |  25 lines

  1. /******************************  rantab.h  **********************************
  2.  
  3.   Purpose:    External definitions for the three random number tables.
  4.  
  5.   Provenance:    Written and tested by Q. Chen and E. Fox, March 1991.
  6.           Edited and tested by S. Wartik, April 1991.
  7.  
  8. **/
  9.  
  10. #define NO_TABLES 3    /* Number of random number tables.    */
  11. #define ROWS 128    /* Rows of the random table (suitable for char). */
  12. #define COLUMNS 150    /* Columns of the random table.        */
  13.  
  14. typedef int randomTablesType[NO_TABLES][ROWS][COLUMNS]; /* random number table */
  15.  
  16. #ifdef __STDC__
  17.  
  18. extern void    initialize_randomTable( randomTablesType tables, int *seed );
  19.  
  20. #else
  21.  
  22. extern void    initialize_randomTable();
  23.  
  24. #endif
  25.